:root {
    --black: #000000;
    --dark-blue: #0d2155;
    --light-blue: #0672cb;
    --purple: #763ccc;
    --dark-green: #246148;
    --light-green: #5ecf6b;

    --heading: "Prata", serif;
    --body: "DM Sans", sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}
 
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
.fullwidth{
    width: 100%;
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: linear-gradient(135deg, #f8fafb 0%, #e8f0f5 100%);
    line-height: 1.6;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(36, 97, 72, 0.08);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    max-width: 98%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: rgba(36, 97, 72, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: var(--dark-green);
}

.nav-links a.active {
    color: var(--dark-green);
    border-bottom: 2px solid var(--dark-green);
    padding-bottom: 2px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.65rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(36, 97, 72, 0.15);
    padding: 12px 0;
    margin-top: 8px;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: rgba(36, 97, 72, 0.7) !important;
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
    display: block !important;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(36, 97, 72, 0.05);
    color: var(--dark-green) !important;
    padding-left: 24px !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== HERO ==================== */
.hero {
    margin-top: 90px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.hero-content {
    padding: 100px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(36, 97, 72, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-label {
    display: inline-block;
    color: var(--dark-green);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
}

.hero-content h1 {
    font-family: var(--heading);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease 0.1s both;
}

.hero-tagline {
    font-size: 1.5rem;
    color: rgba(36, 97, 72, 0.7);
    font-weight: 300;
    margin-bottom: 30px;
    font-family: var(--heading);
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-text {
    font-size: 1rem;
    color: rgba(36, 97, 72, 0.6);
    line-height: 1.85;
    margin-bottom: 50px;
    max-width: 500px;
    animation: slideInLeft 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.btn {
    padding: 16px 40px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--body);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(36, 97, 72, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(36, 97, 72, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple-expand {
    from {
        width: 0;
        height: 0;
        opacity: 1;
    }

    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Ripple element */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: ripple-expand 0.6s var(--ease-out) forwards;
    pointer-events: none;
}

/* Scroll entrance animations */
.js-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--stagger-delay, 0s);
}

.js-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== SECTIONS ==================== */
.section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 60px 30px;
    animation: fadeInUp 0.8s ease;
    background: #f9f7f4;
    border-radius: 20px;
}


.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(36, 97, 72, 0.6);
    font-weight: 300;
}

/* ==================== APPROACH SECTION ==================== */
.approach-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.approach-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(36, 97, 72, 0.15) 50%, transparent 100%);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.approach-content {
    padding-right: 40px;
}

.approach-title {
    font-family: var(--heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.approach-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    margin-bottom: 30px;
    border-radius: 2px;
}

.approach-intro {
    font-size: 1.2rem;
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(36, 97, 72, 0.7);
    margin-bottom: 20px;
}

.approach-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(36, 97, 72, 0.2);
}

.approach-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: white;
    padding: 0;
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(36, 97, 72, 0.15) 50%, transparent 100%);
}

.about-fullbleed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.fullbleed-image {
    overflow: hidden;
    background: var(--dark-green);
}

.fullbleed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    min-height: 600px;
}

.fullbleed-image:hover img {
    transform: scale(1.03);
}

.fullbleed-content {
    padding: 80px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: var(--heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    color: white;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-highlight {
    font-size: 1.1rem;
    color: var(--dark-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.fullbleed-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 18px;
}

.about-cta {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.about-cta .btn-primary {
    background: white;
    color: var(--dark-green);
    box-shadow: 0 15px 35px rgba(36, 97, 72, 0.2);
}

.about-cta .btn-primary:hover {
    background: white;
    color: var(--dark-green);
    box-shadow: 0 20px 50px rgba(36, 97, 72, 0.3);
    transform: translateY(-3px);
}

.about-cta .btn-secondary {
    border-color: white;
    color: white;
    background: transparent;
}

.about-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}
.service-card img { 
    border-radius: 15px; 
    margin-bottom: 20px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(36, 97, 72, 0.15);
    border-color: var(--dark-green);
}
 
.service-card h3 {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(36, 97, 72, 0.6);
    line-height: 1.85;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card a:hover {
    gap: 12px;
    color: var(--light-green);
}

/* ==================== WAVE SEPARATOR ==================== */
.wave-separator {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    clip-path: polygon(
        0% 30%,
        2% 25%, 4% 22%, 6% 20%, 8% 22%, 10% 25%, 12% 30%, 14% 35%, 16% 38%, 18% 40%,
        20% 38%, 22% 35%, 24% 30%, 26% 25%, 28% 22%, 30% 20%, 32% 22%, 34% 25%, 36% 30%, 38% 35%,
        40% 38%, 42% 40%, 44% 38%, 46% 35%, 48% 30%, 50% 25%, 52% 22%, 54% 20%, 56% 22%, 58% 25%,
        60% 30%, 62% 35%, 64% 38%, 66% 40%, 68% 38%, 70% 35%, 72% 30%, 74% 25%, 76% 22%, 78% 20%,
        80% 22%, 82% 25%, 84% 30%, 86% 35%, 88% 38%, 90% 40%, 92% 38%, 94% 35%, 96% 30%, 98% 25%, 100% 20%,
        100% 100%, 0% 100%
    );
}

/* ==================== CTA ==================== */
.cta {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 100px 40px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.cta-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: fadeInUp 0.8s var(--ease-out);
}

.cta h2 {
    font-family: var(--heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.cta p {
    font-size: 1.15rem;
    margin-bottom: 50px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--dark-green);
    padding: 18px 45px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--body);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(36, 97, 72, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-ghost {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 45px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--body);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-cta-ghost::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s var(--ease-out);
    z-index: -1;
}

.btn-cta-ghost:hover::before {
    left: 0;
}

.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: white;
}

.cta-stats {
    font-size: 0.95rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
    letter-spacing: 0.5px;
}

.cta-dot {
    opacity: 0.5;
    margin: 0 12px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-green);
    color: white;
    padding: 0;
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-green) 0%, var(--light-green) 50%, var(--dark-green) 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding: 80px 40px 40px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-family: var(--heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section a {
    display: inline-block;
    font-size: 0.9rem;
    color: white;
    opacity: 0.8;
    text-decoration: none;
    margin-bottom: 12px;
    position: relative;
    transition: opacity 0.3s var(--ease-out);
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: width 0.3s var(--ease-out);
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-section:last-child .btn {
    align-self: flex-start;
    margin-top: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0;
}

.footer-tagline {
    opacity: 0.6;
    font-style: italic;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-ghost {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .wave-separator {
        height: 80px;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-ghost {
        width: 100%;
        max-width: 280px;
    }

    .cta-stats {
        font-size: 0.85rem;
    }
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image {
        height: 400px;
    }

    .hero-content {
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-menu {
        gap: 0.4rem;
        padding: 0.4rem;
    }

    .nav-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .approach-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section {
        margin: 60px auto;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px 30px 20px;
    }

    .approach-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-fullbleed {
        grid-template-columns: 1fr;
    }

    .cta {
        margin: 80px 20px;
        padding: 80px 30px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .nav-menu {
        gap: 0.3rem;
        padding: 0.3rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}